home *** CD-ROM | disk | FTP | other *** search
/ Garden Fax: Fruits, Vegetables & Herbs / Garden Fax - Fruits, Vegetables & Herbs (1991)(CDTV Publishing)[!].iso / system / basicdemos / terminal (.txt) < prev   
AmigaBASIC Source Code  |  1978-01-06  |  274b  |  16 lines

  1. REM - Terminal - simple terminal
  2. REM - emulation program which demonstrates
  3. REM - how to access the Amiga RS-232
  4. REM - port from BASIC
  5.  
  6. OPEN "com1:9600,n,8,1" AS 1
  7. WHILE 1
  8.   WHILE LOC(1)<>0
  9.     PRINT INPUT$(1,1);
  10.   WEND
  11.   i$=INKEY$
  12.   IF i$<>"" THEN PRINT #1,i$;
  13. WEND
  14.  
  15.  
  16.